* @return True if the audio codec is AIFF.
*/
public boolean isAIFF() {
return getCodecA() != null && getCodecA().startsWith("aif");
}
/**
* @return True if the audio codec is AIFF.
*/
public boolean isAIFF() {
return FormatConfiguration.AIFF.equalsIgnoreCase(getCodecA());
}
/**